home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Shareware Grab Bag
/
Shareware Grab Bag.iso
/
007
/
ctoolwrk.lbr
/
GETPUT3.C
< prev
next >
Wrap
Text File
|
1985-09-27
|
384b
|
22 lines
/* this is a program to get characters from keyboard */
/* and print them on the screen */
char x;
main()
{
fopen("file","w");
{
while((x = getchar()) != '\21')
putc(x,1);
}
fclose(1);
}